Game Title:30 seconds of pushing the space-bar for points
Platform: Amstrad CPC6128 / CPC464 / CPC664 / CPC672
Author: Wiremu Te Kani
Language: Locomotive BASIC 1.0
Category: EXTREM-256

Description: Laziest last-minute entry into the competition, with this frustrating no-graphics entry! Push the spacebar exactly one second before the last time, and rack up huge points! Even if you're a nanosecond off, you lose points! It's that simple!

Use WinAPE as the emulator on its default settings (Amstrad CPC6128, Locomotive BASIC1.1).

Screenshot:

Final '10' lines of code for submission

10 g=0:c=0:r$=CHR$(10):MODE 1:PRINT" 30 seconds of pushing the space-bar"r$"   for points. THE GAME"r$:PEN 2:PRINT"Instructions"
r$" 1.Press SPACE exactly every second"r$" 2. Get points"r$:PEN 1:PRINT"  Press SPACE to start":WHILE INKEY$<>" ":WEND
20 e=TIME:EVERY 10 GOSUB 70
30 CLS:d=TIME+9000:b=0:EI:WHILE d>TIME:g=1:a=TIME:WHILE INKEY$<>" ":WEND:e=TIME:a=-300+TIME-a:IF a=0 THEN a=12800 ELSE a=3200\ABS(a)
40 b=b+a:DI:LOCATE 1,1:PRINT "SCORE: ";b;" POINTS: ";a:EI
50 WHILE INKEY$=" ":WEND:WEND:DI:MODE 1:PRINT "YOUR SCORE: ";b:IF c<b THEN c=b:PRINT"New Record!"
60 PRINT "TOP SCORE: ";c;r$;"Press SPACE to play again":WHILE INKEY$=" ":WEND:WHILE INKEY$<>" ":WEND:GOTO 20
70 IF g=0 THEN RETURN ELSE LOCATE 1,2:PRINT "TIME: ";USING "##.#";(d-TIME)/300:LOCATE 1,3:PRINT "CLICK: ";(TIME-e)\3:RETURN

